home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 March
/
PCWorld_2002-03_cd.bin
/
Software
/
TemaCD
/
xteq
/
setup.exe
/
{app}
/
plugins
/
XQ Paint Text.xpl
< prev
next >
Wrap
Text File
|
2000-08-07
|
1KB
|
42 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Program Options\Built in Windows Apps\MS Paint"
"NAME"="Paint Options"
"VERSION"="1.02"
"LANGUAGE"="VBScript"
"TEXT 1"="Show Paint Text Tool Bar"
"DESCRIPTION 1"=Checked item shows Text Toolbar/unchecked item hides Text Toolbar."
"AUTHOR"="Ojatex@aol.com"
"CONTACTURL"="http://members.aol.com/ojatex/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
Sub Plugin_Initialize
i=RegReadValue("HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Paint\Text\ShowTextTool")
if i=1 then SetUIElement 1,true
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue("HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Paint\Text\ShowTextTool","1",2)
else
Call RegWriteValue("HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Paint\Text\ShowTextTool","0",2)
end if
End Sub
Sub Plugin_Terminate
End Sub